home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / BBS-Archive / Dev / CLisp-Beta4-hi.lha / README < prev    next >
Text File  |  1993-04-06  |  5KB  |  179 lines

  1. This is CLISP, a Common Lisp implementation.
  2.  
  3.  
  4. What is LISP?
  5. -------------
  6.  
  7. LISP is a programming language. It was invented by J. McCarthy in 1959.
  8. There have been many dialects of it, but nowadays LISP has been standardized
  9. and wide-spread due to the industrial standard COMMON LISP. There are
  10. applications in the domains of symbolic knowledge processing (AI), numerical
  11. mathematics (MACLISP yielded numerical code as good as FORTRAN), and
  12. widely used programs like editors (EMACS) and CAD (AUTOCAD).
  13. There is an introduction to the language:
  14.  
  15.   Sheila Hughes: Lisp. Pitman Publishing Limited, London 1986.
  16.   107 pages.
  17.  
  18. After a while wou will need the standard text containing the language
  19. definition:
  20.  
  21.   Guy L. Steele Jr.: Common Lisp - The Language. Digital Press.
  22.   1. edition 1984, 465 pages.
  23.   2. edition 1990, 1032 pages.
  24.  
  25. LISP is run in an interactive environment. You input forms, and they will be
  26. evaluated at once. Thus you can inspect variables, call functions with given
  27. arguments or define your own functions.
  28.  
  29.  
  30. Contents:
  31. ---------
  32.  
  33. It consists of the following files:
  34.  
  35.       lisp.run         main program
  36.       lispinit.mem     memory image needed for startup
  37.       clisp.1          manual page in Unix man format
  38.       clisp.man        manual page
  39.       impnotes.txt     implementation notes
  40.       README           this text
  41.       SUMMARY          short description of CLISP
  42.       ANNOUNCE         announcement
  43.       COPYRIGHT        copyright notice
  44.       GNU-GPL          free software license
  45.       config.lsp       site-dependent configuration
  46.  
  47. and - to your convenience, if you like reading source -
  48.  
  49.       *.lsp            the source of lispinit.mem
  50.       *.fas            the same files, already compiled
  51.  
  52.  
  53. Hardware requirements:
  54. ----------------------
  55.  
  56. There are two versions of CLISP for the Amiga, both require at least 1.5MB RAM.
  57. The *-low version runs on Amigas with no memory outside the 24 bit addressable
  58. space (68000, A2620 & A2630). The *-high Version can address memory upto
  59. address 0x0FFFFFFF and has been compiled for 68020 (or better) processors. It
  60. runs on an A3000 or A4000.
  61.  
  62.  
  63. Installation:
  64. -------------
  65.  
  66. Edit the contents of config.lsp appropriately for your site,
  67. especially the definitions of short-site-name and long-site-name.
  68. You may also want to edit the time zone definition in defs1.lsp.
  69. Then start
  70.  
  71.          lisp.run -M lispinit.mem
  72.  
  73. When the LISP prompt
  74.  
  75.       > _
  76.  
  77. appears, type
  78.  
  79.         (compile-file "config")
  80.         (load "config")
  81.  
  82. and - in case you modified defs1.lsp -
  83.  
  84.         (compile-file "defs1")
  85.         (load "defs1")
  86.  
  87. and then
  88.  
  89.         (saveinitmem)
  90.  
  91. to overwrite the file lispinit.mem with your configuration. Then
  92.  
  93.         (exit)
  94.  
  95. Then create a directory, and put the executable and the memory image there.
  96.  
  97.  
  98.  
  99. Note:
  100. -----
  101.  
  102. You can start CLISP from Workbench(tm). The following Tooltypes are
  103. recognized in the Tool Icon:
  104.  
  105.    WINDOW=<window or pipe specification>
  106.    ARGS=<CLI-like arguments>
  107.  
  108. For example,
  109.  
  110.    WINDOW=CON:0/11/640/200/CLISP-Listener
  111.    ARGS=-M lispinit.mem
  112.  
  113.  
  114. When you encounter problems:
  115. ----------------------------
  116.  
  117. After errors, you are in the debugger:
  118.  
  119.      1. Break> _
  120.  
  121. You can evaluate forms, as usual. Furthermore:
  122.  
  123.      Help
  124.                calles help
  125.      Abort     or
  126.      Unwind
  127.                climbs up to next higher input loop
  128.      (show-stack)
  129.                shows the contents of the stack, helpful for debugging
  130.  
  131. And you can look at the values of the variables of the functions where the
  132. error occurred.
  133.  
  134. On bigger problems, e.g. "guru"s, please send a description of the error
  135. and how to produce it reliably to the authors.
  136.  
  137.  
  138. Mailing List:
  139. -------------
  140.  
  141. There is a mailing list for users of CLISP. It is the proper forum for
  142. questions about CLISP, installation problems, bug reports, application
  143. packages etc.
  144.  
  145. For information about the list and how to subscribe it, send mail to
  146. listserv@ma2s2.mathematik.uni-karlsruhe.de, with the two lines
  147.           help
  148.           information clisp-list
  149. in the message body.
  150.  
  151.  
  152. Acknowledgement:
  153. ----------------
  154.  
  155. We are indebted to
  156.   * Guy L. Steele and many others for the Common Lisp specification.
  157.   * Richard Stallman's GNU project for GCC.
  158.  
  159.  
  160. Authors:
  161. --------
  162.  
  163.         Bruno Haible                    Michael Stoll
  164.         Augartenstraße 40               Gallierweg 39
  165.     D - W 7500 Karlsruhe 1          D - W 5300 Bonn 1
  166.         Germany                         Germany
  167.  
  168. Email: haible@ma2s2.mathematik.uni-karlsruhe.de
  169.  
  170. Amiga Port by:
  171. --------------
  172.  
  173.         Jörg Höhle
  174.         Radolfzeller Straße 3
  175.     D - W 7753 Allensbach
  176.         Germany
  177.  
  178. Email: hoehle@inf-wiss.ivp.uni-konstanz.de
  179.